home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
.net (French) 1997 February
/
.net Magazine (FR) - Issue 04 - Feb 1997.iso
/
pc
/
partners
/
havas
/
win31
/
isp.scp
< prev
next >
Wrap
Text File
|
1996-10-15
|
590b
|
34 lines
;
; Script de connection a HOL
; via le kiosque micro 36 01 13 13
;
; Main entry point to script
;
proc main
; Delay for 2 seconds first to make sure the
; host doesn't get confused when we send the
; two carriage-returns.
;set port databits 8
;set port stopbits 1
;set port parity none
transmit "^M^M"
; Wait for the login prompt before entering
; the user ID
waitfor "Ser?"
transmit "hol^M"
waitfor "name:"
transmit $USERID
transmit "^M"
waitfor "word:"
transmit $PASSWORD
transmit "^M"
endproc